Socket
Socket
Sign inDemoInstall

ignore-walk

Package Overview
Dependencies
Maintainers
3
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ignore-walk

Nested/recursive `.gitignore`/`.npmignore` parsing and filtering.


Version published
Weekly downloads
7.7M
decreased by-19.98%
Maintainers
3
Weekly downloads
 
Created

What is ignore-walk?

The ignore-walk npm package is a Node.js library used to create a list of files in a directory tree while honoring .ignore rules, similar to how tools like git and npm ignore files based on .gitignore or .npmignore files. It is particularly useful for applications that need to process file trees while excluding files that should be ignored according to specified patterns.

What are ignore-walk's main functionalities?

Walking a directory while respecting .ignore files

This feature allows you to walk through a directory and list all files that are not excluded by the ignore rules specified in .ignore files such as .gitignore. The function returns a promise that resolves with the list of files.

const IgnoreWalk = require('ignore-walk');

IgnoreWalk({
  path: './path/to/directory',
  ignoreFiles: ['.gitignore']
}).then(files => {
  console.log('Files:', files);
}).catch(err => {
  console.error('Error:', err);
});

Other packages similar to ignore-walk

Keywords

FAQs

Package last updated on 06 Apr 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc